home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
png
/
ptot
/
makefile.nt
< prev
next >
Wrap
Makefile
|
1995-03-29
|
620b
|
39 lines
# Makefile for Windows NT (Posix Subsystem)
#
!include <ntwin32.mak>
cc = cl
link = link
.c.obj:
$(cc) $(cdebug) $(cflags) $(cvars) $(psxvars) $*.c
.obj.exe:
$(link) $(linkdebug) $(psxflags) -out:$*.exe $** $(psxlibs)
#
#
all: ptot.exe
clean:
del *.exe *.obj *.bak *.pdb *.tmp
ptot.exe: ptot.obj zchunks.obj tempfile.obj tiff.obj crc32.obj inflate.obj
mp.exe: mp.obj crc32.obj
mp.obj: mp.c ptot.h
ptot.obj: ptot.c ptot.h errors.h
zchunks.obj: zchunks.c ptot.h errors.h
tempfile.obj: tempfile.c ptot.h errors.h
tiff.obj: tiff.c ptot.h errors.h
crc32.obj: crc32.c
inflate.obj: inflate.c inflate.h ptot.h